#import "Fraction.h"

int main (int argc, char *argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    Fraction *a, *b;

    a = [[Fraction alloc] initWith: 1 over: 3] ;
    b = [[Fraction alloc] initWith: 3 over: 7];

    [a print];
    [b print];

    [a release];
    [b release];

    [pool drain];
    return 0;
}